srand 함수는 rand 함수의 씨(seed) 값을 주는 함수로 다음과 같이 사용한다.
void @srand(int seed);
함수인자
int seed : seed 값
반환 값
없음
예제
@srand(15);
문장설명 : rand 함수의 씨앗값 15를 준다.